home *** CD-ROM | disk | FTP | other *** search
/ Collection of Tools & Utilities / Collection of Tools and Utilities.iso / c / cm100exe.zip / CM100EXE.EXE / SAMPLES / C / WORLD.C < prev    next >
C/C++ Source or Header  |  1991-11-16  |  173b  |  12 lines

  1. /* world.c - Function to print "World" */
  2.  
  3. #include <stdio.h>
  4. #include "world.h"
  5. /* CMAKE - INCLUDE END */
  6.  
  7. void print_world ( void )
  8.  
  9. {
  10. printf ( "World\n" ) ;
  11. }
  12.